home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / make / icmake-6.000 / icmake-6 / icmake / exec / funpushr.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  601 b   |  27 lines

  1. /*
  2. \funcref{fun\_push\_reg}{void fun\_push\_reg ()}
  3.     {}
  4.     {}
  5.     {push()}
  6.     {}
  7.     {funpushr.c}
  8.     {
  9.  
  10.         This function is called when the return register is to be pushed. The
  11.         return register is used to return information from built-in functions.
  12.  
  13.         {\bf Note that} the {\em count} field of the return register is {\bf
  14.         not} incremented when the register is pushed. The associated memory is
  15.         assigned by internal functions and may be freed by subsequent {\em
  16.         pop}-instructions.
  17.  
  18.     }
  19. */
  20.  
  21. #include "icm-exec.h"
  22.  
  23. void fun_push_reg ()
  24. {
  25.     push (reg);
  26. }
  27.